/* ===== COMPONENTS STYLESHEET ===== */
/* Features, Services, Portfolio, Testimonials, FAQ, Forms, Modals */

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.feature-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h4 {
  padding: 20px 20px 10px;
  font-size: 1.4rem;
  color: var(--text-primary);
}

.service-card p {
  padding: 0 20px 25px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px var(--shadow-medium);
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: white;
}

.portfolio-overlay p {
  font-size: 0.9rem;
  opacity: 0.95;
  color: var(--accent-color);
  font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-wrapper {
  overflow: hidden;
  border-radius: 15px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-light);
  text-align: center;
}

.testimonial-stars {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.testimonial-date {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  font-style: normal;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(197, 160, 89, 0.9);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-heavy);
}

.testimonial-arrow:hover {
  background: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow-left {
  left: 0;
}

.testimonial-arrow-right {
  right: 0;
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.testimonial-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-indicator:hover {
  background: var(--accent-hover);
}

.testimonial-indicator.active {
  background: var(--accent-color);
  width: 25px;
  border-radius: 5px;
}

/* ===== FAQ SECTION ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-light);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px var(--shadow-medium);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: var(--card-bg);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: all 0.3s ease;
  font-family: 'Playfair Display', serif;
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-question i {
  color: var(--accent-color);
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--bg-secondary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem 2rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-box {
  max-width: 500px;
  margin: auto;
  text-align: center;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow-light);
  margin-bottom: 3rem;
}

.contact-box p {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.contact-box i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.socials {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.socials a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s;
  text-decoration: none;
}

.socials a:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}

.email-btn {
  margin-top: 20px;
  padding: 15px 30px;
  border: none;
  background: var(--text-primary);
  color: var(--bg-primary);
  cursor: pointer;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
}

.email-btn:hover {
  opacity: 0.8;
}

/* ===== MAP SECTION ===== */
.map-container {
  max-width: 800px;
  margin: 3rem auto;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px var(--shadow-light);
}

.map-container h4 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--text-primary);
}

.map-wrapper {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-medium);
}

.map-note {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.map-note i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  margin-top: 2rem;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px var(--shadow-light);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
  color: var(--text-primary);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent-color);
}

.contact-form .form-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form button {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem;
  border: none;
  background: var(--accent-color);
  color: white;
  font-weight: 500;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: var(--accent-hover);
}

/* ===== CUSTOMER REVIEW SECTION ===== */
.review-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 15px var(--shadow-light);
}

.review-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.review-btn {
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  background: var(--accent-color);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.review-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.review-btn i {
  font-size: 1.1rem;
}

/* ===== MODALS ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 25px var(--shadow-heavy);
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h4 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
  color: var(--text-primary);
}

.modal-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

.modal-content input:focus,
.modal-content textarea:focus,
.modal-content select:focus {
  outline: none;
  border-color: var(--accent-color);
}

.modal-content .form-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-content button {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem;
  border: none;
  background: var(--accent-color);
  color: white;
  font-weight: 500;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
}

.modal-content button:hover {
  background: var(--accent-hover);
}

.close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.close:hover {
  color: var(--text-primary);
}

/* ===== REVIEW MODAL ===== */
.review-modal-content {
  max-width: 550px;
}

.rating-container {
  margin-bottom: 1.5rem;
}

.rating-container label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.star-rating {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.star-rating i {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
}

.star-rating i:hover,
.star-rating i.fas {
  color: #ffc107;
  transform: scale(1.1);
}

.form-note {
  background: var(--bg-secondary);
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-note i {
  color: var(--accent-color);
}

.submit-review-btn {
  width: 100%;
  padding: 15px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-review-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ===== SUCCESS MODAL ===== */
.success-modal-content {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #4caf50, #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease;
}

.success-icon i {
  font-size: 3rem;
  color: white;
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.success-modal-content h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.success-modal-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.close-success-btn {
  padding: 12px 40px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.close-success-btn:hover {
  background: var(--accent-hover);
}

/* ===== SAXOPHONIST PAGE COMPONENTS ===== */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-heavy);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cta-btn {
  margin-top: 1.5rem;
  padding: 15px 35px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.sax-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.sax-service-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sax-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.sax-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.sax-service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.sax-service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.repertoire-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 15px var(--shadow-light);
  transition: all 0.3s;
}

.repertoire-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px var(--shadow-medium);
}

.repertoire-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.repertoire-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.repertoire-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px var(--shadow-medium);
}

.pricing-card.featured {
  border: 3px solid var(--accent-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card h4 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-align: center;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-card li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.pricing-btn {
  width: 100%;
  padding: 12px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.pricing-btn:hover {
  background: var(--accent-hover);
}

.cta-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

.cta-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-buttons button {
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 8px;
  background: var(--accent-color);
  color: white;
}

.cta-buttons button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.cta-buttons button.outline-dark {
  background: transparent;
  border: 2px solid white;
}

.cta-buttons button.outline-dark:hover {
  background: white;
  color: #2c3e50;
}

.contact-info {
  margin-top: 1.5rem;
}

.contact-info p {
  display: inline-block;
  margin: 0 1.5rem;
  font-size: 1rem;
}

.contact-info i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.video-showcase {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.video-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.video-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(197, 160, 89, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-heavy);
}

.carousel-arrow:hover {
  background: rgba(197, 160, 89, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px var(--shadow-heavy);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow-left {
  left: -60px;
}

.carousel-arrow-right {
  right: -60px;
}

.carousel-arrow:disabled {
  background: rgba(150, 150, 150, 0.5);
  cursor: not-allowed;
  opacity: 0.5;
}

.carousel-arrow:disabled:hover {
  transform: translateY(-50%);
  box-shadow: 0 4px 15px var(--shadow-heavy);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 40px var(--shadow-heavy);
  flex: 1;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.video-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.video-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-indicator.active {
  background: var(--accent-color);
  width: 30px;
  border-radius: 6px;
}

.video-indicator:hover {
  background: var(--accent-hover);
}

.video-note {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
}

.video-note i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.photo-gallery {
  margin-top: 4rem;
}

.gallery-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 15px var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-heavy);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay p {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: white;
}

/* ===== RESPONSIVE FOR COMPONENTS ===== */
@media (max-width: 768px) {
  .features-grid,
  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .contact-form button,
  .modal-content button {
    min-width: 100%;
  }

  .testimonials-container {
    padding: 0 15px;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-arrow {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .testimonial-arrow-left {
    left: -5px;
  }

  .testimonial-arrow-right {
    right: -5px;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 1.25rem 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .sax-services-grid,
  .repertoire-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .cta-content h3 {
    font-size: 2rem;
  }

  .contact-info p {
    display: block;
    margin: 0.5rem 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 250px;
  }

  .video-showcase {
    margin-bottom: 3rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-arrow-left {
    left: 10px;
  }

  .carousel-arrow-right {
    right: 10px;
  }

  .video-carousel {
    gap: 0;
  }
  
  .review-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}